home *** CD-ROM | disk | FTP | other *** search
- // ===============================================================
- // Vertex Program: color contrast
- // Description: used in color contrast post-processing fx
- // Last Update: 02/06/2003
- // Coder: Tiago Sousa
- // ===============================================================
-
- #include "../CGVPMacro.csi"
-
-
- // setup vertex components
- MainInput
- {
- // common model view matrix
- VIEWPROJ_MATRIX
-
- }
-
- DeclarationsScript
- {
- // vertex input
- IN_T0
- // vertex output
- OUT_T0
- }
-
- // output vertex position
- PositionScript = PosCommon
-
- CoreScript
- {
- // output texture coordinates
- OUT.Tex0.xy = IN.TexCoord0.xy;
-
- return OUT;
- }